Keysight Pathwave 89600 VSA .NET API
RemoteCollectionChanged Event
See Also 
Agilent.SA.Vsa.Interfaces Assembly > Agilent.SA.Vsa Namespace > RemotableCollection<T> Class : RemoteCollectionChanged Event


Glossary Item Box

Occurs when an item is added, removed, changed, moved, or the entire list is refreshed.

Syntax

Visual Basic (Declaration) 
Public Event RemoteCollectionChanged As EventHandler(Of RemoteCollectionChangedEventArgs)
C# 
public event EventHandler<RemoteCollectionChangedEventArgs> RemoteCollectionChanged
C++/CLI 
public:
event EventHandler<RemoteCollectionChangedEventArgs^>^ RemoteCollectionChanged

Event Data

The event handler receives an argument of type RemoteCollectionChangedEventArgs containing data related to this event. The following RemoteCollectionChangedEventArgs properties provide information specific to this event.

PropertyDescription
ActionGets the action that caused the event.  
NewItemsGets the list of new items involved in the change.  
NewStartingIndexGets the index at which the change occurred.  
OldItemsGets the list of items affected by a Replace, Remove, or Move action.  
OldStartingIndexGets the index at which a Move, Remove, or Replace action occurred.  

Remarks

The RemoteCollectionChanged event is a remotable version of the CollectionChanged event. This event is used internally by the Keysight 89600 VSA software to propagate CollectionChanged events to client applications. See NotifyCollectionChangedWrapper for details on how to receive CollectionChanged events.

Requirements

Target Platforms: Windows 11 Professional or Enterprise; Windows 10 Professional, Enterprise, or Education (64-bit)

Minimum Software Version Requirement: Keysight PathWave 89600 VSA Ver 14.00

See Also